home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / zope_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10702);
  10.  script_bugtraq_id(1354);
  11.  script_version ("$Revision: 1.13 $");
  12.  script_cve_id("CVE-2000-0483");
  13.  
  14.  name["english"] = "Zope DoS";
  15.  name["francais"] = "Zope DoS";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote web server is Zope < 2.2.5
  20.  
  21. There is a security issue in all releases
  22. prior to version 2.2.5 which allow any Zope
  23. user to create a denial of service by modifying
  24. Zope data structures, thus rendering the site
  25. unusable.
  26.  
  27. *** Nessus solely relied on the version number of your
  28. *** server, so if you applied the hotfix already,
  29. *** consider this alert as a false positive.
  30.  
  31. Solution : Upgrade to Zope 2.2.5 
  32. Risk factor : High";
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  script_description(english:desc["english"]);
  39.  
  40.  summary["english"] = "Checks for Zope";
  41.  summary["francais"] = "VΘrifie la prΘsence de Zope";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "http_version.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  script_require_keys("www/zope");
  56.  exit(0);
  57. }
  58.  
  59. #
  60. # The script code starts here
  61. #
  62.  
  63. include("http_func.inc");
  64.  
  65. port = get_http_port(default:80);
  66.  
  67.  
  68. banner = get_http_banner(port:port);
  69.  
  70. if(banner)
  71. {
  72.   if(egrep(pattern:"Server: .*Zope 2\.((0\..*)|(1\..*)|(2\.[0-4]))", 
  73.           string:banner))
  74.      security_hole(port);
  75. }
  76.  
  77.